home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / DCLAP 6d / dclap6d / network / ncsasock / s_timeb.h < prev    next >
Text File  |  1996-07-05  |  380b  |  19 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)timeb.h    7.1 (Berkeley) 6/4/86
  7.  */
  8.  
  9. /*
  10.  * Structure returned by ftime system call
  11.  */
  12. struct timeb
  13. {
  14.     time_t    time;
  15.     unsigned short millitm;
  16.     short    timezone;
  17.     short    dstflag;
  18. };
  19.